
* {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  box-sizing: border-box;
}
body {
  background: linear-gradient(to bottom, #000000, #323232);
  background-attachment: fixed;
}
.videoediting-title-container{
  /* display:flex; */
  padding: 2%;
  text-align: center;
  justify-content: center;
  
}
.videoediting-title-container h3{
  /* border:1px solid blue; */
  margin-top: 20px ;
  font-size: 2em;
}
.logo {
  position: relative;
  /* top: 30px;
  left: 40px; */
  max-width: 120px;
  width: 50%;
  height: auto;
}

.img-gallery {
  width: 80%;
  margin: 50px auto 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
}

.img-gallery img {
  width: 100%;
  height: 100%;
  max-height: 350px;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.4s;
}

.img-gallery img:hover {
  transform: scale(1.1) rotate(-10deg);
  border-radius: 15px;
  box-shadow: 0 32px 75px rgb(0, 0, 0);
}
 
.full-img {
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.456);
  position: fixed;
  top: 0;
  left: 0;
  display: flex; /* Make sure it's flex to center the content */
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.full-img iframe {
  width: 70%;
  height: 70%;
  /* max-width: 500px;
  max-height: 600px; */
  border-radius: 10px ;
}

@media screen and (max-width:300px) {
  .img-gallery img{
    /* width:200px; */
    width:100%;
    max-height: 100%;
    max-width: 100%;

  }  
  .img-gallery{
    width:100%;
    padding: 5%;
    grid-template-columns: repeat(auto-fit, minmax(auto, 1fr));

  }
  .videoediting-title-container h3{
    /* border:1px solid blue; */
    margin-top: 10px ;
    font-size: 1.5em;
  }
}